export function ScopesExample() {
return (
<GlobalScopeProvider>
<Button top={0} left={80} height={5} width={40}>
React Node InSim
</Button>
</GlobalScopeProvider>
<ConnectionScopeProvider>
<UserNameButton />
<HumanPlayerScopeProvider>
<HumanPlayerNameButton />
</HumanPlayerScopeProvider>
</ConnectionScopeProvider>
);
}